module VFX
{

	item SmallTinCanEmpty
	{
		DisplayName = Empty Small Tin Can,
		DisplayCategory = Junk,
		Type = Normal,
		EatType = Bourbon,
		Weight = 0.1,
		Icon = VFX_SmallTinCanEmpty,
		IconFluidMask = VFX_SmallTinCan_Mask,
		MetalValue = 10,
		StaticModel = Base.VFX_SmallTinCanEmpty_SM,
		WorldStaticModel = Base.VFX_SmallTinCanEmpty,
		Tags = Cookable;HasMetal;TinCan;EmptyCan,
 
        	component FluidContainer
			{
				ContainerName		= SmallCanTin,
				RainFactor			= 0.5,
				capacity			= 0.125,
				CustomDrinkSound	= DrinkingFromCan,
			}
	}

	item PlasticPitcher
	{
		DisplayName = Empty Plastic Pitcher,
		DisplayCategory = Junk,
		Type = Normal,
		Weight = 0.1,

		FillFromDispenserSound = GetWaterFromDispenserPlastic,
		FillFromLakeSound = GetWaterFromLakeBottle,
		FillFromTapSound = GetWaterFromTapPlasticBig,
		FillFromToiletSound = GetWaterFromToilet,

		Tags = Cookable;CookableMicrowave;Pitcher,

		IconFluidMask = VFX_Beverages_PlasticPitcher_Mask,

		Icon = VFX_PlasticPitcher,
		StaticModel = Base.VFX_PlasticPitcher,
		WorldStaticModel = Base.VFX_PlasticPitcher,

			component FluidContainer
			{
				ContainerName   	= PlasticPitcher,
				RainFactor			= 0.5,
				capacity        	= 2.0,
				CustomDrinkSound	= DrinkingFromBottlePlastic,
			}
	}

	item ProteinShaker
	{
		DisplayName = Protein Shaker,
		DisplayCategory = WaterContainer,
		Type = Normal,
		Weight = 0.1,

		FillFromDispenserSound = GetWaterFromDispenserPlastic,
		FillFromLakeSound = GetWaterFromLakeBottle,
		FillFromTapSound = GetWaterFromTapPlasticSmall,
		FillFromToiletSound = GetWaterFromToilet,

		Tags = Cookable;CookableMicrowave;ProteinShaker,

		IconFluidMask = VFX_Beverages_ProteinShaker_Mask,

		Icon = VFX_Beverages_ProteinShaker,
		StaticModel = Base.VFX_ProteinShaker,
		WorldStaticModel = Base.VFX_ProteinShaker,

		component FluidContainer
		{
			ContainerName = ProteinShaker,
			RainFactor = 0.5,
			capacity = 0.5,
			CustomDrinkSound = DrinkingFromBottlePlastic,
		}
	}

	item MilkshakeGlass
	{
		DisplayName = Milkshake Glass,
		DisplayCategory = WaterContainer,
		Type = Normal,
		Weight = 0.2,

		FillFromDispenserSound = GetWaterFromDispenserGlass,
		FillFromLakeSound = GetWaterFromLakeBottle,
		FillFromTapSound = GetWaterFromTapGlass,
		FillFromToiletSound = GetWaterFromToilet,

		Tags = Cookable;CookableMicrowave,

		IconFluidMask = VFX_Beverages_MilkshakeGlass_Mask,

		Icon = VFX_Beverages_MilkshakeGlass,
		StaticModel = Base.VFX_MilkshakeGlass,
		WorldStaticModel = Base.VFX_MilkshakeGlass,

		component FluidContainer
		{
			ContainerName = MilkshakeGlass,
			RainFactor = 0.5,
			capacity = 0.2,
			CustomDrinkSound = DrinkingFromMug,
		}
	}

}